home *** CD-ROM | disk | FTP | other *** search
/ IRIX 5.3 for Indy R4400 / IRIX 5.3 for Indy R4400 175MHz.img / dist / eoe2.idb / usr / lib / perl / syslog.pl.z / syslog.pl
Perl Script  |  1995-02-28  |  6KB  |  234 lines

  1. #
  2. # syslog.pl
  3. #
  4. # $Log: syslog.pl,v $
  5. #Revision 1.4  1993/08/13  18:45:11  cwilson
  6. #@#!@#$! rcs that thinks it knows the comment character from the suffix.
  7. #
  8. # Revision 1.3  1993/08/13  18:40:13  cwilson
  9. # comment problem revisited
  10. #
  11. # Revision 1.2  1993/07/06  20:48:55  cwilson
  12. # stupidncomment problem
  13. #
  14. # Revision 1.1  1993/05/14  19:57:26  cwilson
  15. # Initial revision
  16. #
  17. # Revision 4.0.1.1  92/06/08  13:48:05  lwall
  18. # patch20: new warning for ambiguous use of unary operators
  19. # Revision 4.0  91/03/20  01:26:24  lwall
  20. # 4.0 baseline.
  21. # Revision 3.0.1.4  90/11/10  01:41:11  lwall
  22. # patch38: syslog.pl was referencing an absolute path
  23. # Revision 3.0.1.3  90/10/15  17:42:18  lwall
  24. # patch29: various portability fixes
  25. # Revision 3.0.1.1  90/08/09  03:57:17  lwall
  26. # patch19: Initial revision
  27. # Revision 1.2  90/06/11  18:45:30  18:45:30  root ()
  28. # - Changed 'warn' to 'mail|warning' in test call (to give example of
  29. #   facility specification, and because 'warn' didn't work on HP-UX).
  30. # - Fixed typo in &openlog ("ncons" should be "cons").
  31. # - Added (package-global) $maskpri, and &setlogmask.
  32. # - In &syslog:
  33. #   - put argument test ahead of &connect (why waste cycles?),
  34. #   - allowed facility to be specified in &syslog's first arg (temporarily
  35. #     overrides any $facility set in &openlog), just as in syslog(3C),
  36. #   - do a return 0 when bit for $numpri not set in log mask (see syslog(3C)),
  37. #   - changed $whoami code to use getlogin, getpwuid($<) and 'syslog'
  38. #     (in that order) when $ident is null,
  39. #   - made PID logging consistent with syslog(3C) and subject to $lo_pid only,
  40. #   - fixed typo in "print CONS" statement ($<facility should be <$facility).
  41. #   - changed \n to \r in print CONS (\r is useful, $message already has a \n).
  42. # - Changed &xlate to return -1 for an unknown name, instead of croaking.
  43. #
  44. # tom christiansen <tchrist@convex.com>
  45. # modified to use sockets by Larry Wall <lwall@jpl-devvax.jpl.nasa.gov>
  46. # NOTE: openlog now takes three arguments, just like openlog(3)
  47. #
  48. # call syslog() with a string priority and a list of printf() args
  49. # like syslog(3)
  50. #
  51. #  usage: require 'syslog.pl';
  52. #
  53. #  then (put these all in a script to test function)
  54. #        
  55. #
  56. #    do openlog($program,'cons,pid','user');
  57. #    do syslog('info','this is another test');
  58. #    do syslog('mail|warning','this is a better test: %d', time);
  59. #    do closelog();
  60. #    
  61. #    do syslog('debug','this is the last test');
  62. #    do openlog("$program $$",'ndelay','user');
  63. #    do syslog('notice','fooprogram: this is really done');
  64. #
  65. #    $! = 55;
  66. #    do syslog('info','problem was %m'); # %m == $! in syslog(3)
  67.  
  68. package syslog;
  69.  
  70. $host = 'localhost' unless $host;    # set $syslog'host to change
  71.  
  72. require 'syslog.ph';
  73.  
  74. $maskpri = &LOG_UPTO(&LOG_DEBUG);
  75.  
  76. sub main'openlog {
  77.     ($ident, $logopt, $facility) = @_;  # package vars
  78.     $lo_pid = $logopt =~ /\bpid\b/;
  79.     $lo_ndelay = $logopt =~ /\bndelay\b/;
  80.     $lo_cons = $logopt =~ /\bcons\b/;
  81.     $lo_nowait = $logopt =~ /\bnowait\b/;
  82.     &connect if $lo_ndelay;
  83.  
  84. sub main'closelog {
  85.     $facility = $ident = '';
  86.     &disconnect;
  87.  
  88. sub main'setlogmask {
  89.     local($oldmask) = $maskpri;
  90.     $maskpri = shift;
  91.     $oldmask;
  92. }
  93.  
  94. sub main'syslog {
  95.     local($priority) = shift;
  96.     local($mask) = shift;
  97.     local($message, $whoami);
  98.     local(@words, $num, $numpri, $numfac, $sum);
  99.     local($facility) = $facility;    # may need to change temporarily.
  100.  
  101.     die "syslog: expected both priority and mask" unless $mask && $priority;
  102.  
  103.     @words = split(/\W+/, $priority, 2);# Allow "level" or "level|facility".
  104.     undef $numpri;
  105.     undef $numfac;
  106.     foreach (@words) {
  107.     $num = &xlate($_);        # Translate word to number.
  108.     if (/^kern$/ || $num < 0) {
  109.         die "syslog: invalid level/facility: $_\n";
  110.     }
  111.     elsif ($num <= &LOG_PRIMASK) {
  112.         die "syslog: too many levels given: $_\n" if defined($numpri);
  113.         $numpri = $num;
  114.         return 0 unless &LOG_MASK($numpri) & $maskpri;
  115.     }
  116.     else {
  117.         die "syslog: too many facilities given: $_\n" if defined($numfac);
  118.         $facility = $_;
  119.         $numfac = $num;
  120.     }
  121.     }
  122.  
  123.     die "syslog: level must be given\n" unless defined($numpri);
  124.  
  125.     if (!defined($numfac)) {    # Facility not specified in this call.
  126.     $facility = 'user' unless $facility;
  127.     $numfac = &xlate($facility);
  128.     }
  129.  
  130.     &connect unless $connected;
  131.  
  132.     $whoami = $ident;
  133.  
  134.     if (!$ident && $mask =~ /^(\S.*):\s?(.*)/) {
  135.     $whoami = $1;
  136.     $mask = $2;
  137.     } 
  138.  
  139.     unless ($whoami) {
  140.     ($whoami = getlogin) ||
  141.         ($whoami = getpwuid($<)) ||
  142.         ($whoami = 'syslog');
  143.     }
  144.  
  145.     $whoami .= "[$$]" if $lo_pid;
  146.  
  147.     $mask =~ s/%m/$!/g;
  148.     $mask .= "\n" unless $mask =~ /\n$/;
  149.     $message = sprintf ($mask, @_);
  150.  
  151.     $sum = $numpri + $numfac;
  152.     unless (send(SYSLOG,"<$sum>$whoami: $message",0)) {
  153.     if ($lo_cons) {
  154.         if ($pid = fork) {
  155.         unless ($lo_nowait) {
  156.             do {$died = wait;} until $died == $pid || $died < 0;
  157.         }
  158.         }
  159.         else {
  160.         open(CONS,">/dev/console");
  161.         print CONS "<$facility.$priority>$whoami: $message\r";
  162.         exit if defined $pid;        # if fork failed, we're parent
  163.         close CONS;
  164.         }
  165.     }
  166.     }
  167. }
  168.  
  169. sub xlate {
  170.     local($name) = @_;
  171.     $name =~ y/a-z/A-Z/;
  172.     $name = "LOG_$name" unless $name =~ /^LOG_/;
  173.     $name = "syslog'$name";
  174.     eval(&$name) || -1;
  175. }
  176.  
  177. sub connect {
  178.     $pat = 'S n C4 x8';
  179.  
  180.     $af_unix = 1;
  181.     $af_inet = 2;
  182.  
  183.     $stream = 1;
  184.     $datagram = 2;
  185.  
  186.     ($name,$aliases,$proto) = getprotobyname('udp');
  187.     $udp = $proto;
  188.  
  189.     ($name,$aliase,$port,$proto) = getservbyname('syslog','udp');
  190.     $syslog = $port;
  191.  
  192.     if (chop($myname = `hostname`)) {
  193.     ($name,$aliases,$addrtype,$length,@addrs) = gethostbyname($myname);
  194.     die "Can't lookup $myname\n" unless $name;
  195.     @bytes = unpack("C4",$addrs[0]);
  196.     }
  197.     else {
  198.     @bytes = (0,0,0,0);
  199.     }
  200.     $this = pack($pat, $af_inet, 0, @bytes);
  201.  
  202.     if ($host =~ /^\d+\./) {
  203.     @bytes = split(/\./,$host);
  204.     }
  205.     else {
  206.     ($name,$aliases,$addrtype,$length,@addrs) = gethostbyname($host);
  207.     die "Can't lookup $host\n" unless $name;
  208.     @bytes = unpack("C4",$addrs[0]);
  209.     }
  210.     $that = pack($pat,$af_inet,$syslog,@bytes);
  211.  
  212.     socket(SYSLOG,$af_inet,$datagram,$udp) || die "socket: $!\n";
  213.     bind(SYSLOG,$this) || die "bind: $!\n";
  214.     connect(SYSLOG,$that) || die "connect: $!\n";
  215.  
  216.     local($old) = select(SYSLOG); $| = 1; select($old);
  217.     $connected = 1;
  218. }
  219.  
  220. sub disconnect {
  221.     close SYSLOG;
  222.     $connected = 0;
  223. }
  224.  
  225. 1;
  226.